home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Locus / Source / InfoPanel.h < prev    next >
Text File  |  1995-06-12  |  818b  |  59 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.
  4.  
  5.     You are free to use all or any parts of the Locus project
  6.     however you wish, just give credit where credit is due.
  7.     The author (Jeremy Slade) shall not be held responsible
  8.     for any damages that result out of use or misuse of any
  9.     part of this project.
  10.  
  11. */
  12.  
  13. /*
  14.     Project: Locus
  15.     
  16.     Class: InfoPanel
  17.     
  18.     Description:
  19.  
  20.     Original Author: Jeremy Slade
  21.     
  22.     Revision History:
  23.         Created
  24.             V.101    JGS Mon Feb  8 22:20:06 GMT-0700 1993
  25.  
  26. */
  27.  
  28.  
  29. #ifndef InfoPanel_h
  30. #define InfoPanel_h
  31.  
  32. #define InfoPanel_VERSION    (101)
  33.  
  34.  
  35. #import <appkit/Panel.h>
  36.  
  37.  
  38. @interface InfoPanel : Panel
  39. {
  40.     id    versionField;
  41. }
  42.  
  43. + initialize;
  44.  
  45. - runInfoPanel:sender;
  46.  
  47. - (BOOL)canBecomeKeyWindow;
  48. - (BOOL)canBecomeMainWindow;
  49.  
  50. @end
  51.  
  52. @interface Object ( InfoPanelDelegate )
  53. - infoPanelDidRun:sender;
  54. @end
  55.  
  56.  
  57. #endif // InfoPanel_h
  58.  
  59.